home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209b.zip / octave-2.09 / doc / octave.i02 (.txt) < prev    next >
GNU Info File  |  1997-08-20  |  49KB  |  1,014 lines

  1. This is Info file octave, produced by Makeinfo-1.64 from the input file
  2. octave.tex.
  3. START-INFO-DIR-ENTRY
  4. * Octave: (octave).     Interactive language for numerical computations.
  5. END-INFO-DIR-ENTRY
  6.    Copyright (C) 1996, 1997 John W. Eaton.
  7.    Permission is granted to make and distribute verbatim copies of this
  8. manual provided the copyright notice and this permission notice are
  9. preserved on all copies.
  10.    Permission is granted to copy and distribute modified versions of
  11. this manual under the conditions for verbatim copying, provided that
  12. the entire resulting derived work is distributed under the terms of a
  13. permission notice identical to this one.
  14.    Permission is granted to copy and distribute translations of this
  15. manual into another language, under the above conditions for modified
  16. versions.
  17. File: octave,  Node: Commands For Text,  Next: Commands For Completion,  Prev: Killing and Yanking,  Up: Command Line Editing
  18. Commands For Changing Text
  19. --------------------------
  20.    The following commands can be used for entering characters that would
  21. otherwise have a special meaning (e.g., `TAB', `C-q', etc.), or for
  22. quickly correcting typing mistakes.
  23. `C-q'
  24. `C-v'
  25.      Add the next character that you type to the line verbatim.  This is
  26.      how to insert things like `C-q' for example.
  27. `M-TAB'
  28.      Insert a tab character.
  29. `C-t'
  30.      Drag the character before the cursor forward over the character at
  31.      the cursor, also moving the cursor forward.  If the cursor is at
  32.      the end of the line, then transpose the two characters before it.
  33. `M-t'
  34.      Drag the word behind the cursor past the word in front of the
  35.      cursor moving the cursor over that word as well.
  36. `M-u'
  37.      Uppercase the characters following the cursor to the end of the
  38.      current (or following) word, moving the cursor to the end of the
  39.      word.
  40. `M-l'
  41.      Lowecase the characters following the cursor to the end of the
  42.      current (or following) word, moving the cursor to the end of the
  43.      word.
  44. `M-c'
  45.      Uppercase the character following the cursor (or the beginning of
  46.      the next word if the cursor is between words), moving the cursor
  47.      to the end of the word.
  48. File: octave,  Node: Commands For Completion,  Next: Commands For History,  Prev: Commands For Text,  Up: Command Line Editing
  49. Letting Readline Type For You
  50. -----------------------------
  51.    The following commands allow Octave to complete command and variable
  52. names for you.
  53. `TAB'
  54.      Attempt to do completion on the text before the cursor.  Octave can
  55.      complete the names of commands and variables.
  56. `M-?'
  57.      List the possible completions of the text before the cursor.
  58.  - Built-in Variable: completion_append_char
  59.      The value of `completion_append_char' is used as the character to
  60.      append to successful command-line completion attempts.  The default
  61.      value is `" "' (a single space).
  62.  - Built-in Function:  completion_matches (HINT)
  63.      Generate possible completions given HINT.
  64.      This function is provided for the benefit of programs like Emacs
  65.      which might be controlling Octave and handling user input.  The
  66.      current command number is not incremented when this function is
  67.      called.  This is a feature, not a bug.
  68. File: octave,  Node: Commands For History,  Next: Customizing the Prompt,  Prev: Commands For Completion,  Up: Command Line Editing
  69. Commands For Manipulating The History
  70. -------------------------------------
  71.    Octave normally keeps track of the commands you type so that you can
  72. recall previous commands to edit or execute them again.  When you exit
  73. Octave, the most recent commands you have typed, up to the number
  74. specified by the variable `history_size', are saved in a file.  When
  75. Octave starts, it loads an initial list of commands from the file named
  76. by the variable `history_file'.
  77.    Here are the commands for simple browsing and searching the history
  78. list.
  79. `LFD'
  80. `RET'
  81.      Accept the line regardless of where the cursor is.  If this line is
  82.      non-empty, add it to the history list.  If this line was a history
  83.      line, then restore the history line to its original state.
  84. `C-p'
  85.      Move `up' through the history list.
  86. `C-n'
  87.      Move `down' through the history list.
  88. `M-<'
  89.      Move to the first line in the history.
  90. `M->'
  91.      Move to the end of the input history, i.e., the line you are
  92.      entering!
  93. `C-r'
  94.      Search backward starting at the current line and moving `up'
  95.      through the history as necessary.  This is an incremental search.
  96. `C-s'
  97.      Search forward starting at the current line and moving `down'
  98.      through the the history as necessary.
  99.    On most terminals, you can also use the arrow keys in place of `C-p'
  100. and `C-n' to move through the history list.
  101.    In addition to the keyboard commands for moving through the history
  102. list, Octave provides three functions for viewing, editing, and
  103. re-running chunks of commands from the history list.
  104.  - Command: history OPTIONS
  105.      If invoked with no arguments, `history' displays a list of commands
  106.      that you have executed.  Valid options are:
  107.     `-w FILE'
  108.           Write the current history to the file FILE.  If the name is
  109.           omitted, use the default history file (normally
  110.           `~/.octave_hist').
  111.     `-r FILE'
  112.           Read the file FILE, replacing the current history list with
  113.           its contents.  If the name is omitted, use the default
  114.           history file (normally `~/.octave_hist').
  115.     `N'
  116.           Only display the most recent N lines of history.
  117.     `-q'
  118.           Don't number the displayed lines of history.  This is useful
  119.           for cutting and pasting commands if you are using the X
  120.           Window System.
  121.      For example, to display the five most recent commands that you have
  122.      typed without displaying line numbers, use the command `history -q
  123.      5'.
  124.  - Command: edit_history OPTIONS
  125.      If invoked with no arguments, `edit_history' allows you to edit the
  126.      history list using the editor named by the variable `EDITOR'.  The
  127.      commands to be edited are first copied to a temporary file.  When
  128.      you exit the editor, Octave executes the commands that remain in
  129.      the file.  It is often more convenient to use `edit_history' to
  130.      define functions rather than attempting to enter them directly on
  131.      the command line.  By default, the block of commands is executed
  132.      as soon as you exit the editor.  To avoid executing any commands,
  133.      simply delete all the lines from the buffer before exiting the
  134.      editor.
  135.      The `edit_history' command takes two optional arguments specifying
  136.      the history numbers of first and last commands to edit.  For
  137.      example, the command
  138.           edit_history 13
  139.      extracts all the commands from the 13th through the last in the
  140.      history list.  The command
  141.           edit_history 13 169
  142.      only extracts commands 13 through 169.  Specifying a larger number
  143.      for the first command than the last command reverses the list of
  144.      commands before placing them in the buffer to be edited.  If both
  145.      arguments are omitted, the previous command in the history list is
  146.      used.
  147.  - Command: run_history
  148.      Similar to `edit_history', except that the editor is not invoked,
  149.      and the commands are simply executed as they appear in the history
  150.      list.
  151.  - Built-in Variable: EDITOR
  152.      A string naming the editor to use with the `edit_history' command.
  153.      If the environment variable `EDITOR' is set when Octave starts, its
  154.      value is used as the default.  Otherwise, `EDITOR' is set to
  155.      `"emacs"'.
  156.  - Built-in Variable: history_file
  157.      This variable specifies the name of the file used to store command
  158.      history.  The default value is `"~/.octave_hist"', but may be
  159.      overridden by the environment variable `OCTAVE_HISTFILE'.
  160.  - Built-in Variable: history_size
  161.      This variable specifies how many entries to store in the history
  162.      file.  The default value is `1024', but may be overridden by the
  163.      environment variable `OCTAVE_HISTSIZE'.
  164.  - Built-in Variable: saving_history
  165.      If the value of `saving_history' is `"true"', command entered on
  166.      the command line are saved in the file specified by the variable
  167.      `history_file'.
  168. File: octave,  Node: Customizing the Prompt,  Next: Diary and Echo Commands,  Prev: Commands For History,  Up: Command Line Editing
  169. Customizing the Prompt
  170. ----------------------
  171.    The following variables are available for customizing the appearance
  172. of the command-line prompts.  Octave allows the prompt to be customized
  173. by inserting a number of backslash-escaped special characters that are
  174. decoded as follows:
  175.      The time.
  176.      The date.
  177.      Begins a new line by printing the equivalent of a carriage return
  178.      followed by a line feed.
  179.      The name of the program (usually just `octave').
  180.      The current working directory.
  181.      The basename of the current working directory.
  182.      The username of the current user.
  183.      The hostname, up to the first `.'.
  184.      The hostname.
  185.      The command number of this command, counting from when Octave
  186.      starts.
  187.      The history number of this command.  This differs from `\#' by the
  188.      number of commands in the history list when Octave starts.
  189.      If the effective UID is 0, a `#', otherwise a `$'.
  190. `\nnn'
  191.      The character whose character code in octal is NNN.
  192.      A backslash.
  193.  - Built-in Variable: PS1
  194.      The primary prompt string.  When executing interactively, Octave
  195.      displays the primary prompt `PS1' when it is ready to read a
  196.      command.
  197.      The default value of `PS1' is `"\s:\#> "'.  To change it, use a
  198.      command like
  199.           octave:13> PS1 = "\\u@\\H> "
  200.      which will result in the prompt `boris@kremvax> ' for the user
  201.      `boris' logged in on the host `kremvax.kgb.su'.  Note that two
  202.      backslashes are required to enter a backslash into a string.
  203.      *Note Strings::.
  204.  - Built-in Variable: PS2
  205.      The secondary prompt string, which is printed when Octave is
  206.      expecting additional input to complete a command.  For example,
  207.      when defining a function over several lines, Octave will print the
  208.      value of `PS1' at the beginning of each line after the first.  The
  209.      default value of `PS2' is `"> "'.
  210.  - Built-in Variable: PS4
  211.      If Octave is invoked with the `--echo-input' option, the value of
  212.      `PS4' is printed before each line of input that is echoed.  The
  213.      default value of `PS4' is `"+ "'.  *Note Invoking Octave::, for a
  214.      description of `--echo-input'.
  215. File: octave,  Node: Diary and Echo Commands,  Prev: Customizing the Prompt,  Up: Command Line Editing
  216. Diary and Echo Commands
  217. -----------------------
  218.    Octave's diary feature allows you to keep a log of all or part of an
  219. interactive session by recording the input you type and the output that
  220. Octave produces in a separate file.
  221.  - Command: diary OPTIONS
  222.      Create a list of all commands *and* the output they produce, mixed
  223.      together just as you see them on your terminal.  Valid options are:
  224.     `on'
  225.           Start recording your session in a file called `diary' in your
  226.           current working directory.
  227.     `off'
  228.           Stop recording your session in the diary file.
  229.     `FILE'
  230.           Record your session in the file named FILE.
  231.      Without any arguments, `diary' toggles the current diary state.
  232.    Sometimes it is useful to see the commands in a function or script as
  233. they are being evaluated.  This can be especially helpful for debugging
  234. some kinds of problems.
  235.  - Command: echo OPTIONS
  236.      Control whether commands are displayed as they are executed.  Valid
  237.      options are:
  238.     `on'
  239.           Enable echoing of commands as they are executed in script
  240.           files.
  241.     `off'
  242.           Disable echoing of commands as they are executed in script
  243.           files.
  244.     `on all'
  245.           Enable echoing of commands as they are executed in script
  246.           files and functions.
  247.     `off all'
  248.           Disable echoing of commands as they are executed in script
  249.           files and functions.
  250.      If invoked without any arguments, `echo' toggles the current echo
  251.      state.
  252.  - Built-in Variable: echo_executing_commands
  253.      This variable is may also be used to control the echo state.  It
  254.      may be the sum of the following values:
  255.     1
  256.           Echo commands read from script files.
  257.     2
  258.           Echo commands from functions.
  259.     4
  260.           Echo commands read from command line.
  261.      More than one state can be active at once.  For example, a value
  262.      of 3 is equivalent to the command `echo on all'.
  263.      The value of `echo_executing_commands' is set by the `echo'
  264.      command and the command line option `--echo-input'.
  265. File: octave,  Node: Errors,  Next: Executable Octave Programs,  Prev: Command Line Editing,  Up: Getting Started
  266. How Octave Reports Errors
  267. =========================
  268.    Octave reports two kinds of errors for invalid programs.
  269.    A "parse error" occurs if Octave cannot understand something you
  270. have typed.  For example, if you misspell a keyword,
  271.      octave:13> functon y = f (x) y = x^2; endfunction
  272. Octave will respond immediately with a message like this:
  273.      parse error:
  274.      
  275.        functon y = f (x) y = x^2; endfunction
  276.                ^
  277. For most parse errors, Octave uses a caret (`^') to mark the point on
  278. the line where it was unable to make sense of your input.  In this
  279. case, Octave generated an error message because the keyword `function'
  280. was misspelled.  Instead of seeing `function f', Octave saw two
  281. consecutive variable names, which is invalid in this context.  It
  282. marked the error at the `y' because the first name by itself was
  283. accepted as valid input.
  284.    Another class of error message occurs occurs at evaluation time.
  285. These errors are called "run-time errors", or sometimes "evaluation
  286. errors" because they occur when your program is being "run", or
  287. "evaluated".  For example, if after correcting the mistake in the
  288. previous function definition, you type
  289.      octave:13> f ()
  290. Octave will respond with
  291.      error: `x' undefined near line 1 column 24
  292.      error: evaluating expression near line 1, column 24
  293.      error: evaluating assignment expression near line 1, column 22
  294.      error: called from `f'
  295.    This error message has several parts, and gives you quite a bit of
  296. information to help you locate the source of the error.  The messages
  297. are generated from the point of the innermost error, and provide a
  298. traceback of enclosing expressions and function calls.
  299.    In the example above, the first line indicates that a variable named
  300. `x' was found to be undefined near line 1 and column 24 of some
  301. function or expression.  For errors occurring within functions, lines
  302. from the beginning of the file containing the function definition.  For
  303. errors occurring at the top level, the line number indicates the input
  304. line number, which is usually displayed in the prompt string.
  305.    The second and third lines in the example indicate that the error
  306. occurred within an assignment expression, and the last line of the error
  307. message indicates that the error occurred within the function `f'.  If
  308. the function `f' had been called from another function, for example,
  309. `g', the list of errors would have ended with one more line:
  310.      error: called from `g'
  311.    These lists of function calls usually make it fairly easy to trace
  312. the path your program took before the error occurred, and to correct the
  313. error before trying again.
  314. File: octave,  Node: Executable Octave Programs,  Next: Comments,  Prev: Errors,  Up: Getting Started
  315. Executable Octave Programs
  316. ==========================
  317.    Once you have learned Octave, you may want to write self-contained
  318. Octave scripts, using the `#!' script mechanism.  You can do this on
  319. GNU systems and on many Unix systems (1)
  320.    For example, you could create a text file named `hello', containing
  321. the following lines:
  322.      #! OCTAVE-INTERPRETER-NAME -qf
  323.      # a sample Octave program
  324.      printf ("Hello, world!\n");
  325. (where OCTAVE-INTERPRETER-NAME should be replaced with the full file
  326. name for your Octave binary).  After making this file executable (with
  327. the `chmod' command), you can simply type:
  328.      hello
  329. at the shell, and the system will arrange to run Octave as if you had
  330. typed:
  331.      octave hello
  332.    The line beginning with `#!' lists the full file name of an
  333. interpreter to be run, and an optional initial command line argument to
  334. pass to that interpreter.  The operating system then runs the
  335. interpreter with the given argument and the full argument list of the
  336. executed program.  The first argument in the list is the full file name
  337. of the Octave program. The rest of the argument list will either be
  338. options to Octave, or data files, or both.  The `-qf' option is usually
  339. specified in stand-alone Octave programs to prevent them from printing
  340. the normal startup message, and to keep them from behaving differently
  341. depending on the contents of a particular user's `~/.octaverc' file.
  342. *Note Invoking Octave::.  Note that some operating systems may place a
  343. limit on the number of characters that are recognized after `#!'.
  344.    Self-contained Octave scripts are useful when you want to write a
  345. program which users can invoke without knowing that the program is
  346. written in the Octave language.
  347.    If you invoke an executable Octave script with command line
  348. arguments, the arguments are available in the built-in variable `argv'.
  349. *Note Command Line Options::.  For example, the following program will
  350. reproduce the command line that is used to execute it.
  351.      #! /bin/octave -qf
  352.      printf ("%s", program_name);
  353.      for i = 1:nargin
  354.        printf (" %s", argv(i,:));
  355.      endfor
  356.      printf ("\n");
  357.    ---------- Footnotes ----------
  358.    (1)  The `#!' mechanism works on Unix systems derived from Berkeley
  359. Unix, System V Release 4, and some System V Release 3 systems.
  360. File: octave,  Node: Comments,  Prev: Executable Octave Programs,  Up: Getting Started
  361. Comments in Octave Programs
  362. ===========================
  363.    A "comment" is some text that is included in a program for the sake
  364. of human readers, and that is not really part of the program.  Comments
  365. can explain what the program does, and how it works.  Nearly all
  366. programming languages have provisions for comments, because programs are
  367. typically hard to understand without them.
  368.    In the Octave language, a comment starts with either the sharp sign
  369. character, `#', or the percent symbol `%' and continues to the end of
  370. the line.  The Octave interpreter ignores the rest of a line following
  371. a sharp sign or percent symbol.  For example, we could have put the
  372. following into the function `f':
  373.      function xdot = f (x, t)
  374.      
  375.      # usage: f (x, t)
  376.      #
  377.      # This function defines the right hand
  378.      # side functions for a set of nonlinear
  379.      # differential equations.
  380.      
  381.        r = 0.25;
  382.        ...
  383.      endfunction
  384.    The `help' command (*note Getting Help::.) is able to find the first
  385. block of comments in a function (even those that are composed directly
  386. on the command line).  This means that users of Octave can use the same
  387. commands to get help for built-in functions, and for functions that you
  388. have defined.  For example, after defining the function `f' above, the
  389. command `help f' produces the output
  390.       usage: f (x, t)
  391.      
  392.       This function defines the right hand
  393.       side functions for a set of nonlinear
  394.       differential equations.
  395.    Although it is possible to put comment lines into keyboard-composed
  396. throw-away Octave programs, it usually isn't very useful, because the
  397. purpose of a comment is to help you or another person understand the
  398. program at a later time.
  399. File: octave,  Node: Data Types,  Next: Numeric Data Types,  Prev: Getting Started,  Up: Top
  400. Data Types
  401. **********
  402.    All versions of Octave include a number of built-in data types,
  403. including real and complex scalars and matrices, character strings, and
  404. a data structure type.
  405.    It is also possible to define new specialized data types by writing a
  406. small amount of C++ code.  On some systems, new data types can be loaded
  407. dynamically while Octave is running, so it is not necessary to recompile
  408. all of Octave just to add a new type.  *Note Dynamically Linked
  409. Functions:: for more information about Octave's dynamic linking
  410. capabilities.  *Note User-defined Data Types:: describes what you must
  411. do to define a new data type for Octave.
  412. * Menu:
  413. * Built-in Data Types::
  414. * User-defined Data Types::
  415. * Object Sizes::
  416. File: octave,  Node: Built-in Data Types,  Next: User-defined Data Types,  Prev: Data Types,  Up: Data Types
  417. Built-in Data Types
  418. ===================
  419.    The standard built-in data types are real and complex scalars and
  420. matrices, ranges, character strings, and a data structure type.
  421. Additional built-in data types may be added in future versions.  If you
  422. need a specialized data type that is not currently provided as a
  423. built-in type, you are encouraged to write your own user-defined data
  424. type and contribute it for distribution in a future release of Octave.
  425. * Menu:
  426. * Numeric Objects::
  427. * String Objects::
  428. * Data Structure Objects::
  429. File: octave,  Node: Numeric Objects,  Next: String Objects,  Prev: Built-in Data Types,  Up: Built-in Data Types
  430. Numeric Objects
  431. ---------------
  432.    Octave's built-in numeric objects include real and complex scalars
  433. and matrices.  All built-in numeric data is currently stored as double
  434. precision numbers.  On systems that use the IEEE floating point format,
  435. values in the range of approximately  2.2251e-308 to 1.7977e+308  can
  436. be stored, and the relative precision is approximately  2.2204e-16.
  437. The exact values are given by the variables `realmin', `realmax', and
  438. `eps', respectively.
  439.    Matrix objects can be of any size, and can be dynamically reshaped
  440. and resized.  It is easy to extract individual rows, columns, or
  441. submatrices is using a variety of powerful indexing features.  *Note
  442. Index Expressions::.
  443.    *Note Numeric Data Types::, for more information.
  444. File: octave,  Node: String Objects,  Next: Data Structure Objects,  Prev: Numeric Objects,  Up: Built-in Data Types
  445. String Objects
  446. --------------
  447.    A character string in Octave consists of a sequence of characters
  448. enclosed in either double-quote or single-quote marks.  Internally,
  449. Octave currently stores strings as matrices of characters.  All the
  450. indexing operations that work for matrix objects also work for strings.
  451.    *Note Strings::, for more information.
  452. File: octave,  Node: Data Structure Objects,  Prev: String Objects,  Up: Built-in Data Types
  453. Data Structure Objects
  454. ----------------------
  455.    Octave's data structure type can help you to organize related
  456. objects of different types.  The current implementation uses an
  457. associative array with indices limited to strings, but the syntax is
  458. more like C-style structures.
  459.    *Note Data Structures::, for more information.
  460. File: octave,  Node: User-defined Data Types,  Next: Object Sizes,  Prev: Built-in Data Types,  Up: Data Types
  461. User-defined Data Types
  462. =======================
  463.    Someday I hope to expand this to include a complete description of
  464. Octave's mechanism for managing user-defined data types.  Until this
  465. feature is documented here, you will have to make do by reading the code
  466. in the `ov.h', `ops.h', and related files from Octave's `src' directory.
  467. File: octave,  Node: Object Sizes,  Prev: User-defined Data Types,  Up: Data Types
  468. Object Sizes
  469. ============
  470.    The following functions allow you to determine the size of a
  471. variable or expression.  These functions are defined for all objects.
  472. They return -1 when the operation doesn't make sense.  For example,
  473. Octave's data structure type doesn't have rows or columns, so the
  474. `rows' and `columns' functions return -1 for structure arguments.
  475.  - Function File:  columns (A)
  476.      Return the number of columns of A.
  477.  - Function File:  rows (A)
  478.      Return the number of rows of A.
  479.  - Function File:  length (A)
  480.      Return the number of rows of A or the number of columns of A,
  481.      whichever is larger.
  482.  - Function File:  size (A, N)
  483.      Return the number rows and columns of A.
  484.      With one input argument and one output argument, the result is
  485.      returned in a 2 element row vector.  If there are two output
  486.      arguments, the number of rows is assigned to the first, and the
  487.      number of columns to the second.  For example,
  488.           size ([1, 2; 3, 4; 5, 6])
  489.                => [ 3, 2 ]
  490.           
  491.           [nr, nc] = size ([1, 2; 3, 4; 5, 6])
  492.                => nr = 3
  493.                => nc = 2
  494.      If given a second argument of either 1 or 2, `size' will return
  495.      only the row or column dimension.  For example
  496.           size ([1, 2; 3, 4; 5, 6], 2)
  497.                => 2
  498.      returns the number of columns in the given matrix.
  499.  - Function File:  isempty (A)
  500.      Return 1 if A is an empty matrix (either the number of rows, or
  501.      the number of columns, or both are zero).  Otherwise, return 0.
  502. File: octave,  Node: Numeric Data Types,  Next: Strings,  Prev: Data Types,  Up: Top
  503. Numeric Data Types
  504. ******************
  505.    A "numeric constant" may be a scalar, a vector, or a matrix, and it
  506. may contain complex values.
  507.    The simplest form of a numeric constant, a scalar, is a single number
  508. that can be an integer, a decimal fraction, a number in scientific
  509. (exponential) notation, or a complex number.  Note that all numeric
  510. constants are represented within Octave in double-precision floating
  511. point format (complex constants are stored as pairs of double-precision
  512. floating point values).  Here are some examples of real-valued numeric
  513. constants, which all have the same value:
  514.      105
  515.      1.05e+2
  516.      1050e-1
  517.    To specify complex constants, you can write an expression of the form
  518.      3 + 4i
  519.      3.0 + 4.0i
  520.      0.3e1 + 40e-1i
  521.    all of which are equivalent.  The letter `i' in the previous example
  522. stands for the pure imaginary constant, defined as   `sqrt (-1)'.
  523.    For Octave to recognize a value as the imaginary part of a complex
  524. constant, a space must not appear between the number and the `i'.  If
  525. it does, Octave will print an error message, like this:
  526.      octave:13> 3 + 4 i
  527.      
  528.      parse error:
  529.      
  530.        3 + 4 i
  531.              ^
  532.    You may also use `j', `I', or `J' in place of the `i' above.  All
  533. four forms are equivalent.
  534. * Menu:
  535. * Matrices::
  536. * Ranges::
  537. * Predicates for Numeric Objects::
  538. File: octave,  Node: Matrices,  Next: Ranges,  Prev: Numeric Data Types,  Up: Numeric Data Types
  539. Matrices
  540. ========
  541.    It is easy to define a matrix of values in Octave.  The size of the
  542. matrix is determined automatically, so it is not necessary to explicitly
  543. state the dimensions.  The expression
  544.      a = [1, 2; 3, 4]
  545. results in the matrix
  546.              /      \
  547.              | 1  2 |
  548.        a  =  |      |
  549.              | 3  4 |
  550.              \      /
  551.    Elements of a matrix may be arbitrary expressions, provided that the
  552. dimensions all make sense when combining the various pieces.  For
  553. example, given the above matrix, the expression
  554.      [ a, a ]
  555. produces the matrix
  556.      ans =
  557.      
  558.        1  2  1  2
  559.        3  4  3  4
  560. but the expression
  561.      [ a, 1 ]
  562. produces the error
  563.      error: number of rows must match near line 13, column 6
  564. (assuming that this expression was entered as the first thing on line
  565. 13, of course).
  566.    Inside the square brackets that delimit a matrix expression, Octave
  567. looks at the surrounding context to determine whether spaces and newline
  568. characters should be converted into element and row separators, or
  569. simply ignored, so commands like
  570.      [ linspace (1, 2) ]
  571.      a = [ 1 2
  572.            3 4 ]
  573. will work.  However, some possible sources of confusion remain.  For
  574. example, in the expression
  575.      [ 1 - 1 ]
  576. the `-' is treated as a binary operator and the result is the scalar 0,
  577. but in the expression
  578.      [ 1 -1 ]
  579. the `-' is treated as a unary operator and the result is the vector `[
  580. 1, -1 ]'.
  581.    Given `a = 1', the expression
  582.      [ 1 a' ]
  583. results in the single quote character `'' being treated as a transpose
  584. operator and the result is the vector `[ 1, 1 ]', but the expression
  585.      [ 1 a ' ]
  586. produces the error message
  587.      error: unterminated string constant
  588. because to not do so would make it impossible to correctly parse the
  589. valid expression
  590.      [ a 'foo' ]
  591.    For clarity, it is probably best to always use commas and semicolons
  592. to separate matrix elements and rows.  It is possible to enforce this
  593. style by setting the built-in variable `whitespace_in_literal_matrix' to
  594. `"ignore"'.
  595.  - Built-in Variable: whitespace_in_literal_matrix
  596.      This variable allows some control over how Octave decides to
  597.      convert spaces to commas and semicolons in matrix expressions like
  598.      `[m (1)]' or
  599.           [ 1, 2,
  600.             3, 4 ]
  601.      If the value of `whitespace_in_literal_matrix' is `"ignore"',
  602.      Octave will never insert a comma or a semicolon in a literal matrix
  603.      list.  For example, the expression `[1 2]' will result in an error
  604.      instead of being treated the same as `[1, 2]', and the expression
  605.           [ 1, 2,
  606.             3, 4 ]
  607.      will result in the vector `[ 1, 2, 3, 4 ]' instead of a matrix.
  608.      If the value of `whitespace_in_literal_matrix' is `"traditional"',
  609.      Octave will convert spaces to a comma between identifiers and `('.
  610.      For example, given the matrix
  611.           m = [3 2]
  612.      the expression
  613.           [m (1)]
  614.      will be parsed as
  615.           [m, (1)]
  616.      and will result in
  617.           [3 2 1]
  618.      and the expression
  619.           [ 1, 2,
  620.             3, 4 ]
  621.      will result in a matrix because the newline character is converted
  622.      to a semicolon (row separator) even though there is a comma at the
  623.      end of the first line (trailing commas or semicolons are ignored).
  624.      This is apparently how MATLAB behaves.
  625.      Any other value for `whitespace_in_literal_matrix' results in
  626.      behavior that is the same as traditional, except that Octave does
  627.      not convert spaces to a comma between identifiers and `('.  For
  628.      example, the expression
  629.           [m (1)]
  630.      will produce `3'.  This is the way Octave has always behaved.
  631.    When you type a matrix or the name of a variable whose value is a
  632. matrix, Octave responds by printing the matrix in with neatly aligned
  633. rows and columns.  If the rows of the matrix are too large to fit on the
  634. screen, Octave splits the matrix and displays a header before each
  635. section to indicate which columns are being displayed.
  636. You can use the following variables to control the format of the output.
  637.  - Built-in Variable: output_max_field_width
  638.      This variable specifies the maximum width of a numeric output
  639.      field.  The default value is 10.
  640.  - Built-in Variable: output_precision
  641.      This variable specifies the minimum number of significant figures
  642.      to display for numeric output.  The default value is 5.
  643.    It is possible to achieve a wide range of output styles by using
  644. different values of `output_precision' and `output_max_field_width'.
  645. Reasonable combinations can be set using the `format' function.  *Note
  646. Basic Input and Output::.
  647.  - Built-in Variable: split_long_rows
  648.      For large matrices, Octave may not be able to display all the
  649.      columns of a given row on one line of your screen.  This can
  650.      result in missing information or output that is nearly impossible
  651.      to decipher, depending on whether your terminal truncates or wraps
  652.      long lines.
  653.      If the value of `split_long_rows' is nonzero, Octave will display
  654.      the matrix in a series of smaller pieces, each of which can fit
  655.      within the limits of your terminal width.  Each set of rows is
  656.      labeled so that you can easily see which columns are currently
  657.      being displayed.  For example:
  658.           octave:13> rand (2,10)
  659.           ans =
  660.           
  661.            Columns 1 through 6:
  662.           
  663.             0.75883  0.93290  0.40064  0.43818  0.94958  0.16467
  664.             0.75697  0.51942  0.40031  0.61784  0.92309  0.40201
  665.           
  666.            Columns 7 through 10:
  667.           
  668.             0.90174  0.11854  0.72313  0.73326
  669.             0.44672  0.94303  0.56564  0.82150
  670.      The default value of `split_long_rows' is nonzero.
  671. * Menu:
  672. * Empty Matrices::
  673. File: octave,  Node: Empty Matrices,  Prev: Matrices,  Up: Matrices
  674. Empty Matrices
  675. --------------
  676.    A matrix may have one or both dimensions zero, and operations on
  677. empty matrices are handled as described by Carl de Boor in `An Empty
  678. Exercise', SIGNUM, Volume 25, pages 2-6, 1990 and C. N. Nett and W. M.
  679. Haddad, in `A System-Theoretic Appropriate Realization of the Empty
  680. Matrix Concept', IEEE Transactions on Automatic Control, Volume 38,
  681. Number 5, May 1993.  Briefly, given a scalar S, an M by N matrix
  682. `M(mxn)', and an M by N empty matrix `[](mxn)' (with either one or both
  683. dimensions equal to zero), the following are true:
  684.      s * [](mxn) = [](mxn) * s = [](mxn)
  685.      
  686.          [](mxn) + [](mxn) = [](mxn)
  687.      
  688.          [](0xm) *  M(mxn) = [](0xn)
  689.      
  690.           M(mxn) * [](nx0) = [](mx0)
  691.      
  692.          [](mx0) * [](0xn) =  0(mxn)
  693.    By default, dimensions of the empty matrix are printed along with the
  694. empty matrix symbol, `[]'.  The built-in variable
  695. `print_empty_dimensions' controls this behavior.
  696.  - Built-in Variable: print_empty_dimensions
  697.      If the value of `print_empty_dimensions' is nonzero, the
  698.      dimensions of empty matrices are printed along with the empty
  699.      matrix symbol, `[]'.  For example, the expression
  700.           zeros (3, 0)
  701.      will print
  702.           ans = [](3x0)
  703.    Empty matrices may also be used in assignment statements as a
  704. convenient way to delete rows or columns of matrices.  *Note Assignment
  705. Expressions: Assignment Ops.
  706.    Octave will normally issue a warning if it finds an empty matrix in
  707. the list of elements that make up another matrix.  You can use the
  708. variable `empty_list_elements_ok' to suppress the warning or to treat
  709. it as an error.
  710.  - Built-in Variable: empty_list_elements_ok
  711.      This variable controls whether Octave ignores empty matrices in a
  712.      matrix list.
  713.      For example, if the value of `empty_list_elements_ok' is nonzero,
  714.      Octave will ignore the empty matrices in the expression
  715.           a = [1, [], 3, [], 5]
  716.      and the variable `a' will be assigned the value `[ 1, 3, 5 ]'.
  717.      The default value is `"warn"'.
  718.    When Octave parses a matrix expression, it examines the elements of
  719. the list to determine whether they are all constants.  If they are, it
  720. replaces the list with a single matrix constant.
  721.  - Built-in Variable: propagate_empty_matrices
  722.      If the value of `propagate_empty_matrices' is nonzero, functions
  723.      like `inverse' and `svd' will return an empty matrix if they are
  724.      given one as an argument.  The default value is 1.
  725. File: octave,  Node: Ranges,  Next: Predicates for Numeric Objects,  Prev: Matrices,  Up: Numeric Data Types
  726. Ranges
  727. ======
  728.    A "range" is a convenient way to write a row vector with evenly
  729. spaced elements.  A range expression is defined by the value of the
  730. first element in the range, an optional value for the increment between
  731. elements, and a maximum value which the elements of the range will not
  732. exceed.  The base, increment, and limit are separated by colons (the
  733. `:' character) and may contain any arithmetic expressions and function
  734. calls.  If the increment is omitted, it is assumed to be 1.  For
  735. example, the range
  736.      1 : 5
  737. defines the set of values `[ 1, 2, 3, 4, 5 ]', and the range
  738.      1 : 3 : 5
  739. defines the set of values `[ 1, 4 ]'.
  740.    Although a range constant specifies a row vector, Octave does *not*
  741. convert range constants to vectors unless it is necessary to do so.
  742. This allows you to write a constant like `1 : 10000' without using
  743. 80,000 bytes of storage on a typical 32-bit workstation.
  744.    Note that the upper (or lower, if the increment is negative) bound on
  745. the range is not always included in the set of values, and that ranges
  746. defined by floating point values can produce surprising results because
  747. Octave uses floating point arithmetic to compute the values in the
  748. range.  If it is important to include the endpoints of a range and the
  749. number of elements is known, you should use the `linspace' function
  750. instead (*note Special Utility Matrices::.).
  751.    When Octave parses a range expression, it examines the elements of
  752. the expression to determine whether they are all constants.  If they
  753. are, it replaces the range expression with a single range constant.
  754. File: octave,  Node: Predicates for Numeric Objects,  Prev: Ranges,  Up: Numeric Data Types
  755. Predicates for Numeric Objects
  756. ==============================
  757.  - Function File:  is_matrix (A)
  758.      Return 1 if A is a matrix.  Otherwise, return 0.
  759.  - Function File:  is_vector (A)
  760.      Return 1 if A is a vector.  Otherwise, return 0.
  761.  - Function File:  is_scalar (A)
  762.      Return 1 if A is a scalar.  Otherwise, return 0.
  763.  - Function File:  is_square (X)
  764.      If X is a square matrix, then return the dimension of X.
  765.      Otherwise, return 0.
  766.  - Function File:  is_symmetric (X, TOL)
  767.      If X is symmetric within the tolerance specified by TOL, then
  768.      return the dimension of X.  Otherwise, return 0.  If TOL is
  769.      omitted, use a tolerance equal to the machine precision.
  770. File: octave,  Node: Strings,  Next: Data Structures,  Prev: Numeric Data Types,  Up: Top
  771. Strings
  772. *******
  773.    A "string constant" consists of a sequence of characters enclosed in
  774. either double-quote or single-quote marks.  For example, both of the
  775. following expressions
  776.      "parrot"
  777.      'parrot'
  778. represent the string whose contents are `parrot'.  Strings in Octave
  779. can be of any length.
  780.    Since the single-quote mark is also used for the transpose operator
  781. (*note Arithmetic Ops::.) but double-quote marks have no other purpose
  782. in Octave, it is best to use double-quote marks to denote strings.
  783.    Some characters cannot be included literally in a string constant.
  784. You represent them instead with "escape sequences", which are character
  785. sequences beginning with a backslash (`\').
  786.    One use of an escape sequence is to include a double-quote
  787. (single-quote) character in a string constant that has been defined
  788. using double-quote (single-quote) marks.  Since a plain double-quote
  789. would end the string, you must use `\"' to represent a single
  790. double-quote character as a part of the string.  The backslash character
  791. itself is another character that cannot be included normally.  You must
  792. write `\\' to put one backslash in the string.  Thus, the string whose
  793. contents are the two characters `"\' may be written `"\"\\"' or
  794. `'"\\''.  Similarly, the string whose contents are the two characters
  795. `'\' may be written `'\'\\'' or `"'\\"'.
  796.    Another use of backslash is to represent unprintable characters such
  797. as newline.  While there is nothing to stop you from writing most of
  798. these characters directly in a string constant, they may look ugly.
  799.    Here is a table of all the escape sequences used in Octave.  They are
  800. the same as those used in the C programming language.
  801.      Represents a literal backslash, `\'.
  802.      Represents a literal double-quote character, `"'.
  803.      Represents a literal single-quote character, `''.
  804.      Represents the "alert" character, control-g, ASCII code 7.
  805.      Represents a backspace, control-h, ASCII code 8.
  806.      Represents a formfeed, control-l, ASCII code 12.
  807.      Represents a newline, control-j, ASCII code 10.
  808.      Represents a carriage return, control-m, ASCII code 13.
  809.      Represents a horizontal tab, control-i, ASCII code 9.
  810.      Represents a vertical tab, control-k, ASCII code 11.
  811.    Strings may be concatenated using the notation for defining matrices.
  812. For example, the expression
  813.      [ "foo" , "bar" , "baz" ]
  814. produces the string whose contents are `foobarbaz'.  *Note Numeric Data
  815. Types:: for more information about creating matrices.
  816. * Menu:
  817. * Creating Strings::
  818. * Searching and Replacing::
  819. * String Conversions::
  820. * Character Class Functions::
  821. File: octave,  Node: Creating Strings,  Next: Searching and Replacing,  Prev: Strings,  Up: Strings
  822. Creating Strings
  823. ================
  824.  - Function File:  blanks (N)
  825.      Return a string of N blanks.
  826.  - Function File:  int2str (N)
  827.  - Function File:  num2str (X)
  828.      Convert a number to a string.  These functions are not very
  829.      flexible, but are provided for compatibility with MATLAB.  For
  830.      better control over the results, use `sprintf' (*note Formatted
  831.      Output::.).
  832.  - Built-in Function:  setstr (X)
  833.      Convert a matrix to a string.  Each element of the matrix is
  834.      converted to the corresponding ASCII character.  For example,
  835.           setstr ([97, 98, 99])
  836.                => "abc"
  837.  - Function File:  strcat (S1, S2, ...)
  838.      Return a string containing all the arguments concatenated.  For
  839.      example,
  840.           s = [ "ab"; "cde" ];
  841.           strcat (s, s, s)
  842.                => "ab ab ab "
  843.                   "cdecdecde"
  844.  - Built-in Variable: string_fill_char
  845.      The value of this variable is used to pad all strings in a string
  846.      matrix to the same length.  It should be a single character.  The
  847.      default value is `" "' (a single space).  For example,
  848.           string_fill_char = "X";
  849.           [ "these"; "are"; "strings" ]
  850.                => "theseXX"
  851.                   "areXXXX"
  852.                   "strings"
  853.  - Function File:  str2mat (S_1, ..., S_N)
  854.      Return a matrix containing the strings S_1, ..., S_N as its rows.
  855.      Each string is padded with blanks in order to form a valid matrix.
  856.      *Note:* This function is modelled after MATLAB.  In Octave, you
  857.      can create a matrix of strings by `[S_1; ...; S_N]' even if the
  858.      strings are not all the same length.
  859.  - Built-in Function:  isstr (A)
  860.      Return 1 if A is a string.  Otherwise, return 0.
  861. File: octave,  Node: Searching and Replacing,  Next: String Conversions,  Prev: Creating Strings,  Up: Strings
  862. Searching and Replacing
  863. =======================
  864.  - Function File:  deblank (S)
  865.      Removes the trailing blanks from the string S.
  866.  - Function File:  findstr (S, T, OVERLAP)
  867.      Return the vector of all positions in the longer of the two strings
  868.      S and T where an occurrence of the shorter of the two starts.  If
  869.      the optional argument OVERLAP is nonzero, the returned vector can
  870.      include overlapping positions (this is the default).  For example,
  871.           findstr ("ababab", "a")
  872.                => [ 1, 3, 5 ]
  873.           findstr ("abababa", "aba", 0)
  874.                => [ 1, 5 ]
  875.  - Function File:  index (S, T)
  876.      Return the position of the first occurrence of the string T in the
  877.      string S, or 0 if no occurrence is found.  For example,
  878.           index ("Teststring", "t")
  879.                => 4
  880.      *Note:*  This function does not work for arrays of strings.
  881.  - Function File:  rindex (S, T)
  882.      Return the position of the last occurrence of the string T in the
  883.      string S, or 0 if no occurrence is found.  For example,
  884.           rindex ("Teststring", "t")
  885.                => 6
  886.      *Note:*  This function does not work for arrays of strings.
  887.  - Function File:  split (S, T)
  888.      Divides the string S into pieces separated by T, returning the
  889.      result in a string array (padded with blanks to form a valid
  890.      matrix).  For example,
  891.           split ("Test string", "t")
  892.                => "Tes "
  893.                   " s  "
  894.                   "ring"
  895.  - Function File:  strcmp (S1, S2)
  896.      Compares two strings, returning 1 if they are the same, and 0
  897.      otherwise.
  898.      *Note:*  For compatibility with MATLAB, Octave's strcmp function
  899.      returns 1 if the strings are equal, and 0 otherwise.  This is just
  900.      the opposite of the corresponding C library function.
  901.  - Function File:  strrep (S, X, Y)
  902.      Replaces all occurrences of the substring X of the string S with
  903.      the string Y.  For example,
  904.           strrep ("This is a test string", "is", "&%$")
  905.                => "Th&%$ &%$ a test string"
  906.  - Function File:  substr (S, BEG, LEN)
  907.      Return the substring of S which starts at character number BEG and
  908.      is LEN characters long.  For example,
  909.           substr ("This is a test string", 6, 9)
  910.                => "is a test"
  911.           *Note:* This function is patterned after AWK.  You can get
  912.           the same result by `S (BEG : (BEG + LEN - 1))'.
  913. File: octave,  Node: String Conversions,  Next: Character Class Functions,  Prev: Searching and Replacing,  Up: Strings
  914. String Conversions
  915. ==================
  916.  - Function File:  bin2dec (S)
  917.      Return a decimal number corresponding to the the binary number
  918.      represented as a string of zeros and ones.  For example,
  919.           bin2dec ("1110")
  920.                => 14
  921.  - Function File:  dec2bin (N)
  922.      Return a binary number corresponding the the nonnegative decimal
  923.      number N, as a string of ones and zeros.  For example,
  924.           dec2bin (14)
  925.                => "1110"
  926.  - Function File:  dec2hex (N)
  927.      Return the hexadecimal number corresponding to the nonnegative
  928.      decimal number N, as a string.  For example,
  929.           dec2hex (2748)
  930.                => "abc"
  931.  - Function File:  hex2dec (S)
  932.      Return the decimal number corresponding to the hexadecimal number
  933.      stored in the string S.  For example,
  934.           hex2dec ("12B")
  935.                => 299
  936.           hex2dec ("12b")
  937.                => 299
  938.  - Function File:  str2num (S)
  939.      Convert the string S to a number.
  940.  - Function File:  toascii (S)
  941.      Return ASCII representation of S in a matrix.  For example,
  942.           toascii ("ASCII")
  943.                => [ 65, 83, 67, 73, 73 ]
  944.  - Function File:  tolower (S)
  945.      Return a copy of the string S, with each upper-case character
  946.      replaced by the corresponding lower-case one; nonalphabetic
  947.      characters are left unchanged.  For example,
  948.           tolower ("MiXeD cAsE 123")
  949.                => "mixed case 123"
  950.  - Function File:  toupper (S)
  951.      Return a copy of the string S, with each  lower-case character
  952.      replaced by the corresponding upper-case one; nonalphabetic
  953.      characters are left unchanged.  For example,
  954.           toupper ("MiXeD cAsE 123")
  955.                => "MIXED CASE 123"
  956.  - Built-in Function:  undo_string_escapes (S)
  957.      Converts special characters in strings back to their escaped
  958.      forms.  For example, the expression
  959.           bell = "\a";
  960.      assigns the value of the alert character (control-g, ASCII code 7)
  961.      to the string variable `bell'.  If this string is printed, the
  962.      system will ring the terminal bell (if it is possible).  This is
  963.      normally the desired outcome.  However, sometimes it is useful to
  964.      be able to print the original representation of the string, with
  965.      the special characters replaced by their escape sequences.  For
  966.      example,
  967.           octave:13> undo_string_escapes (bell)
  968.           ans = \a
  969.      replaces the unprintable alert character with its printable
  970.      representation.
  971.  - Built-in Variable: implicit_str_to_num_ok
  972.      If the value of `implicit_str_to_num_ok' is nonzero, implicit
  973.      conversions of strings to their numeric ASCII equivalents are
  974.      allowed.  Otherwise, an error message is printed and control is
  975.      returned to the top level.  The default value is 0.
  976. File: octave,  Node: Character Class Functions,  Prev: String Conversions,  Up: Strings
  977. Character Class Functions
  978. =========================
  979.    Octave also provides the following character class test functions
  980. patterned after the functions in the standard C library.  They all
  981. operate on string arrays and return matrices of zeros and ones.
  982. Elements that are nonzero indicate that the condition was true for the
  983. corresponding character in the string array.  For example,
  984.      isalpha ("!Q@WERT^Y&")
  985.           => [ 0, 1, 0, 1, 1, 1, 1, 0, 1, 0 ]
  986.  - Mapping Function:  isalnum (S)
  987.      Return 1 for characters that are letters or digits (`isalpha (A)'
  988.      or `isdigit ()' is true).
  989.  - Mapping Function:  isalpha (S)
  990.      Return true for characters that are letters (`isupper (A)' or
  991.      `islower ()' is true).
  992.  - Mapping Function:  isascii (S)
  993.      Return 1 for characters that are ASCII (in the range 0 to 127
  994.      decimal).
  995.  - Mapping Function:  iscntrl (S)
  996.      Return 1 for control characters.
  997.  - Mapping Function:  isdigit (S)
  998.      Return 1 for characters that are decimal digits.
  999.  - Mapping Function:  isgraph (S)
  1000.      Return 1 for printable characters (but not the space character).
  1001.  - Mapping Function:  islower (S)
  1002.      Return 1 for characters that are lower case letters.
  1003.  - Mapping Function:  isprint (S)
  1004.      Return 1 for printable characters (including the space character).
  1005.  - Mapping Function:  ispunct (S)
  1006.      Return 1 for punctuation characters.
  1007.  - Mapping Function:  isspace (S)
  1008.      Return 1 for whitespace characters (space, formfeed, newline,
  1009.      carriage return, tab, and vertical tab).
  1010.  - Mapping Function:  isupper (S)
  1011.      Return 1 for upper case letters.
  1012.  - Mapping Function:  isxdigit (S)
  1013.      Return 1 for characters that are hexadecimal digits.
  1014.